home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CD School House 10
/
CD School House - Education and Games (10.0) - Wayzata Technology (1995).iso
/
mac
/
DOS
/
MISC
/
NEUROB
/
INSTALLH.BAT
< prev
next >
Wrap
DOS Batch File
|
1994-03-03
|
1KB
|
58 lines
echo off
rem INSTALL.BAT - Neurobics Hard Disk Installation
if $%1$ == $a:$ goto goodarg
if $%1$ == $A:$ goto goodarg
if $%1$ == $b:$ goto goodarg
if $%1$ == $B:$ goto goodarg
if $%1$ == $c:$ goto goodarg
if $%1$ == $C:$ goto goodarg
if $%1$ == $d:$ goto goodarg
if $%1$ == $D:$ goto goodarg
if $%1$ == $e:$ goto goodarg
if $%1$ == $E:$ goto goodarg
if $%1$ == $f:$ goto goodarg
if $%1$ == $F:$ goto goodarg
if $%1$ == $g:$ goto goodarg
if $%1$ == $G:$ goto goodarg
echo ***
echo *** Command format is: INSTALLH drive
echo *** where drive is the hard disk to install Neurobics on.
echo *** For example, INSTALLH C:
echo ***
goto error
:goodarg
echo ***
echo *** Neurobics Installation
echo ***
if not exist a:README goto :noreadme
type a:readme.
:noreadme
%1
cd\
mkdir \neu
cd \neu
copy a:*.* %1
if exist A:NEU16.PCX goto :copydisk2
echo ***
echo *** Please Insert Neurobics Disk 2
echo ***
pause
:copydisk2
copy a:*.* %1
INSTALL
echo ***
echo *** To Play Neurobics, enter the following commands
echo ***
echo *** %1
echo *** cd\neu
echo *** neu
echo ***
echo *** Neurobics Installation Complete ***
echo ***
goto DONE
:ERROR
echo ***
echo *** Neurobics Installation Error ***
echo ***
:DONE